home *** CD-ROM | disk | FTP | other *** search
- cls
- echo off
- rem
- rem EQUAL PARTNERS
- rem
- rem Version 1.11
- rem Copyright (c) DOWNLINK SYSTEMS INC. 1986,1987
- rem This is an example of installing EQUAL on the "remote"
- rem also the .bat checks the error/return code from the
- rem application program, and takes action accordingly
- rem
- rem The %1 symbolic parameter may be COM1 or COM2
- rem
-
- EQUAL.COM /%1
-
- if errorlevel 3 goto already
- if errorlevel 2 goto missing
- if errorlevel 1 goto badcomm
- echo Equal successfully installed resident
- goto end
-
- :already
- echo Equal communications program already installed resident
- goto end
-
- :missing
- echo Config.sys file missing 50-50.SYS statement
- goto end
-
- :badcomm
- echo Communications port %1 was not found
- goto end
-
- :end
- echo ** END OF EQUAL INSTALL **